home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 1
/
LSD Compendium Deluxe 1.iso
/
a
/
programming
/
misc
/
ace-2.0.lha
/
PRGS.lha
/
ExternFunc
/
sub.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-01-16
|
169 b
|
13 lines
/*
** Subtract two long integers passed
** by value and return the result in
** a third parameter by reference.
*/
subtract(x,y,z)
long x,y;
long *z;
{
*z = x-y;
}